home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / server_links.inc.php < prev    next >
PHP Script  |  2005-01-19  |  4KB  |  85 lines

  1. <?php
  2. /* $Id: server_links.inc.php,v 2.13 2005/01/20 00:06:40 rabus Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. // Check parameters
  6.  
  7. require_once('./libraries/common.lib.php');
  8. PMA_checkParameters(array('is_superuser', 'url_query'));
  9.  
  10. /**
  11.  * Counts amount of navigation tabs
  12.  */
  13. $server_links_count_tabs = 0;
  14.  
  15.  
  16. /**
  17.  * Put something in $sub_part
  18.  */
  19. if (!isset($sub_part)) {
  20.     $sub_part = '';
  21. }
  22.  
  23.  
  24. /**
  25.  * Prepares links
  26.  */
  27. if ($is_superuser) {
  28.     $cfg['ShowMysqlInfo'] = TRUE;
  29.     $cfg['ShowMysqlVars'] = TRUE;
  30. }
  31.  
  32.  
  33. /**
  34.  * Displays tab links
  35.  */
  36. if ($cfg['LightTabs']) {
  37.     echo ' ';
  38. } else {
  39.     echo '<table border="0" cellspacing="0" cellpadding="0" width="100%" id="topmenu">' . "\n"
  40.        . '    <tr>' . "\n"
  41.        . '        <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
  42.        . '            <table border="0" cellpadding="0" cellspacing="0"><tr>'
  43.        . '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  .'" width="2" height="1" border="0" alt="" /></td>'
  44.        . '                <td class="navSpacer"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="1" height="1" border="0" alt="" /></td>';
  45. }
  46. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strDatabases.'" />' : '') . $strDatabases, 'server_databases.php', $url_query);
  47. if ($cfg['ShowMysqlInfo']) {
  48.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_status.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strStatus.'" />' : '') . $strStatus, 'server_status.php', $url_query);
  49. }
  50. if ($cfg['ShowMysqlVars']) {
  51.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_vars.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strServerTabVariables.'" />' : '') . $strServerTabVariables, 'server_variables.php', $url_query);
  52. }
  53. if (PMA_MYSQL_INT_VERSION >= 40100) {
  54.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_asci.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strCharsets.'" />' : '') . $strCharsets, 'server_collations.php', $url_query);
  55. }
  56. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_engine.png" width="16" height="16" border="0" hspace="2" align="middle" alt="' . $strEngines . '" />' : '') . $strEngines, 'server_engines.php', $url_query);
  57. if ($is_superuser) {
  58.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_rights.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strPrivileges.'" />' : '') . $strPrivileges, 'server_privileges.php', $url_query);
  59. }
  60. if ($has_binlogs) {
  61.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_tbl.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strBinaryLog.'" />' : '') . $strBinaryLog, 'server_binlog.php', $url_query);
  62. }
  63. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_process.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strServerTabProcesslist.'" />' : '') . $strServerTabProcesslist, 'server_processlist.php', $url_query);
  64. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_export.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strExport.'" />' : '') . $strExport, 'server_export.php', $url_query);
  65. if (!$cfg['LightTabs']) {
  66.     echo '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="2" height="1" border="0" alt="" /></td>'
  67.        . '            </tr></table>' . "\n"
  68.        . '        </td>' . "\n"
  69.        . '    </tr>' . "\n"
  70.        . '</table>';
  71. } else {
  72.     echo '<br />';
  73. }
  74.  
  75. /**
  76.  * Displays a message
  77.  */
  78. if (!empty($message)) {
  79.     PMA_showMessage($message);
  80.     unset($message);
  81. }
  82.  
  83. ?>
  84. <br />
  85.